Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo tutorial.md #399

Merged
merged 1 commit into from
Jul 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ a seconda dei contenuti del file:
using var stream = new FileStream("IT02182030391_31.xml.p7m", FileMode.Open, FileAccess.Read);
var fattura = FatturaBase.CreateInstanceFromXml(stream);

Console.WriteLine(fattura.GetFormatoTrasmissione())
Console.WriteLine(fattura.GetFormatoTrasmissione());
// "FSM10"
```

`CreateInstanceFromXml` supporta sia file XML puri (*.xml*) che firmati digitalment (*.p7m*), eventualmente anche
`CreateInstanceFromXml` supporta sia file XML puri (*.xml*) che firmati digitalmente (*.p7m*), eventualmente anche
codificati Base64. Questa comodità ha un costo, ovvero un leggero impatto sulle prestazioni in quanto è necessaria
una pre-scasione dello stream per determinarne il formato e la tipologia di fattura.

Expand Down