Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit ae0ca59

Browse files
authored
README.md: fixing minor typos (#528)
1 parent d1f4b83 commit ae0ca59

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ project. It provides a dynamic, but more succinct API than the above options.
152152

153153
### JS Utils
154154

155-
ServiceStack.Text APIs for deserializing arbitrary JSON requires specifying the the Type to deserialize into. An alternative flexible approach to read any arbitrary JavaScript or JSON data structures is to use the high-performance and memory efficient JSON utils in
155+
ServiceStack.Text APIs for deserializing arbitrary JSON requires specifying the Type to deserialize into. An alternative flexible approach to read any arbitrary JavaScript or JSON data structures is to use the high-performance and memory efficient JSON utils in
156156
[#Script](https://sharpscript.net/) implementation of JavaScript.
157157

158158
```csharp
@@ -166,7 +166,7 @@ JSON.parse("[{a:1}]") //= new List<object> { new Dictionary<string, object> { {
166166
#### Eval
167167

168168
Since JS Utils is an essential part of [#Script](https://sharpscript.net/) it allows for advanced scenarios like implementing a text DSL or scripting language for executing custom logic or business rules you want to be able to change without having to compile or redeploy your App. It uses [#Script Context](https://sharpscript.net/docs/methods) which lets you evaluate the script within a custom scope that defines what functions
169-
and arguments it has access to, e.g:
169+
and arguments it has access to, e.g.:
170170

171171
```csharp
172172
public class CustomMethods : ScriptMethods
@@ -205,7 +205,7 @@ Contributors need to approve the [Contributor License Agreement](https://docs.go
205205
## ServiceStack.JsonSerializer
206206

207207
For reasons outlined [in this blog post](https://github.com/ServiceStackV3/mythz_blog/blob/master/pages/344.md) I decided to re-use *TypeSerializer's* text processing-core to create ServiceStack.JsonSerializer - the fastest JSON Serializer for .NET.
208-
Based on the [Northwind Benchmarks](http://mono.servicestack.net/benchmarks/) it's *3.6x* faster than .NET's BCL JsonDataContractSerializer and *3x* faster then the previous fastest JSON serializer benchmarked - [JSON.NET](http://json.codeplex.com/).
208+
Based on the [Northwind Benchmarks](http://mono.servicestack.net/benchmarks/) it's *3.6x* faster than .NET's BCL JsonDataContractSerializer and *3x* faster than the previous fastest JSON serializer benchmarked - [JSON.NET](http://json.codeplex.com/).
209209

210210
A comprehensive set of other .NET benchmarks are maintained at [servicestack.net/benchmarks](http://mono.servicestack.net/benchmarks/) and [in the wiki](https://github.com/ServiceStack/ServiceStack/wiki/Real-world-performance).
211211

@@ -793,7 +793,7 @@ is escaped using CSV-style escaping where the value is wrapped in double quotes,
793793

794794
{Name:"Me, Junior"}
795795

796-
A value with a double-quote is escaped with another double quote e.g:
796+
A value with a double quote is escaped with another double quote e.g:
797797

798798
`new MyClass { Size = "2\" x 1\"" }` is serialized as:
799799

0 commit comments

Comments
 (0)