Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
portyanikhin committed Aug 29, 2024
1 parent b9138b1 commit 84891aa
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
22 changes: 11 additions & 11 deletions src/SharpProp/Fluids/IFluid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ IKeyedInput<Parameters> secondInput
);

/// <summary>
/// The process of isentropic compression to a given pressure.
/// The process of isentropic compression to given pressure.
/// </summary>
/// <param name="pressure">Pressure.</param>
/// <returns>
Expand All @@ -48,7 +48,7 @@ IKeyedInput<Parameters> secondInput
IFluid IsentropicCompressionTo(Pressure pressure);

/// <summary>
/// The process of compression to a given pressure.
/// The process of compression to given pressure.
/// </summary>
/// <param name="pressure">Pressure.</param>
/// <param name="isentropicEfficiency">
Expand All @@ -64,7 +64,7 @@ IKeyedInput<Parameters> secondInput
IFluid CompressionTo(Pressure pressure, Ratio isentropicEfficiency);

/// <summary>
/// The process of isenthalpic expansion to a given pressure.
/// The process of isenthalpic expansion to given pressure.
/// </summary>
/// <param name="pressure">Pressure.</param>
/// <returns>The state of the fluid at the end of the process.</returns>
Expand All @@ -74,7 +74,7 @@ IKeyedInput<Parameters> secondInput
IFluid IsenthalpicExpansionTo(Pressure pressure);

/// <summary>
/// The process of isentropic expansion to a given pressure.
/// The process of isentropic expansion to given pressure.
/// </summary>
/// <param name="pressure">Pressure.</param>
/// <returns>The state of the fluid at the end of the process.</returns>
Expand All @@ -84,7 +84,7 @@ IKeyedInput<Parameters> secondInput
IFluid IsentropicExpansionTo(Pressure pressure);

/// <summary>
/// The process of expansion to a given pressure.
/// The process of expansion to given pressure.
/// </summary>
/// <param name="pressure">Pressure.</param>
/// <param name="isentropicEfficiency">
Expand Down Expand Up @@ -164,10 +164,10 @@ IKeyedInput<Parameters> secondInput
IFluid HeatingTo(SpecificEnergy enthalpy, Pressure? pressureDrop = null);

/// <summary>
/// Returns a bubble point at a given pressure.
/// Returns a bubble point at given pressure.
/// </summary>
/// <param name="pressure">Pressure.</param>
/// <returns>A bubble point at a given pressure.</returns>
/// <returns>A bubble point at given pressure.</returns>
IFluid BubblePointAt(Pressure pressure);

/// <summary>
Expand All @@ -178,10 +178,10 @@ IKeyedInput<Parameters> secondInput
IFluid BubblePointAt(Temperature temperature);

/// <summary>
/// Returns a dew point at a given pressure.
/// Returns a dew point at given pressure.
/// </summary>
/// <param name="pressure">Pressure.</param>
/// <returns>A dew point at a given pressure.</returns>
/// <returns>A dew point at given pressure.</returns>
IFluid DewPointAt(Pressure pressure);

/// <summary>
Expand All @@ -192,11 +192,11 @@ IKeyedInput<Parameters> secondInput
IFluid DewPointAt(Temperature temperature);

/// <summary>
/// Returns a two-phase point at a given pressure.
/// Returns a two-phase point at given pressure.
/// </summary>
/// <param name="pressure">Pressure.</param>
/// <param name="quality">Vapor quality.</param>
/// <returns>Two-phase point at a given pressure.</returns>
/// <returns>Two-phase point at given pressure.</returns>
IFluid TwoPhasePointAt(Pressure pressure, Ratio quality);

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/SharpProp/Fluids/IMixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public interface IMixture
IJsonable
{
/// <summary>
/// List of selected names of pure fluids.
/// List of selected pure fluid names.
/// </summary>
IReadOnlyList<FluidsList> Fluids { get; }

Expand Down
2 changes: 1 addition & 1 deletion src/SharpProp/Fluids/Mixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class Mixture : AbstractFluid, IMixture
private const string AvailableBackend = "HEOS";

/// <inheritdoc cref="Mixture"/>
/// <param name="fluids">List of selected names of pure fluids.</param>
/// <param name="fluids">List of selected pure fluid names.</param>
/// <param name="fractions">List of mass-based fractions.</param>
/// <exception cref="ArgumentException">
/// Invalid input! Fluids and Fractions should be of the same length.
Expand Down
4 changes: 2 additions & 2 deletions src/SharpProp/SharpProp.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>A simple, full-featured, lightweight, cross-platform CoolProp wrapper for C#</Description>
<Description>Simple, full-featured, lightweight, cross-platform CoolProp wrapper for C#</Description>
<NoWarn>$(NoWarn);1591;NU5129;CA2101;SYSLIB1054</NoWarn>
<Summary>A simple, full-featured, lightweight, cross-platform CoolProp wrapper for C#</Summary>
<Summary>Simple, full-featured, lightweight, cross-platform CoolProp wrapper for C#</Summary>
<Title>SharpProp</Title>
</PropertyGroup>

Expand Down

0 comments on commit 84891aa

Please sign in to comment.