Skip to content

Commit

Permalink
Documentation updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
FacilityApiBot committed Jun 13, 2024
1 parent ef401bb commit b1c03ce
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/Facility.Definition.CodeGen/CodeWriter.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ public sealed class CodeWriter
| [Write](CodeWriter/Write.md)(…) | Writes the specified text. |
| [WriteLine](CodeWriter/WriteLine.md)() | Writes a new line. |
| [WriteLine](CodeWriter/WriteLine.md)(…) | Writes the specified text followed by a new line. |
| [WriteLineNoIndent](CodeWriter/WriteLineNoIndent.md)(…) | Writes the specified text followed by a new line. |
| [WriteLineSkipOnce](CodeWriter/WriteLineSkipOnce.md)() | Writes a new line if it has already been called once in this indent scope. |
| [WriteNoIndent](CodeWriter/WriteNoIndent.md)(…) | Writes the specified text. |

## See Also

Expand Down
14 changes: 14 additions & 0 deletions docs/Facility.Definition.CodeGen/CodeWriter/WriteLineNoIndent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# CodeWriter.WriteLineNoIndent method

Writes the specified text followed by a new line.

```csharp
public void WriteLineNoIndent(string text)
```

## See Also

* class [CodeWriter](../CodeWriter.md)
* namespace [Facility.Definition.CodeGen](../../Facility.Definition.md)

<!-- DO NOT EDIT: generated by xmldocmd for Facility.Definition.dll -->
14 changes: 14 additions & 0 deletions docs/Facility.Definition.CodeGen/CodeWriter/WriteNoIndent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# CodeWriter.WriteNoIndent method

Writes the specified text.

```csharp
public void WriteNoIndent(string text)
```

## See Also

* class [CodeWriter](../CodeWriter.md)
* namespace [Facility.Definition.CodeGen](../../Facility.Definition.md)

<!-- DO NOT EDIT: generated by xmldocmd for Facility.Definition.dll -->

0 comments on commit b1c03ce

Please sign in to comment.