Skip to content

Commit

Permalink
Merge pull request #102 from ml054/v4.0
Browse files Browse the repository at this point in the history
fixed indentation
  • Loading branch information
ayende authored Jul 4, 2018
2 parents a85142e + 68c2ada commit 64941df
Show file tree
Hide file tree
Showing 11 changed files with 773 additions and 779 deletions.
2 changes: 1 addition & 1 deletion Ch03/Ch03.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ as shown in Listing 3.6.
using (var session = store.OpenSession())
{
Child alice = session
.Include<Child>(c=>c.Grandparents)
.Include<Child>(c => c.Grandparents)
.Load("children/alice-liddell");
Dictionary<string, Parent> gradparents = session.Load<Parent>(alice.Grandparents);
}
Expand Down
2 changes: 1 addition & 1 deletion Ch04/Ch04.md
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ using (var session = store.OpenSession())
using (var stream = session.Advanced.Stream(callsQuery))
{
while(stream.MoveNext())
while (stream.MoveNext())
{
SupportCall current = stream.Current;
// do something with this instance
Expand Down
Loading

0 comments on commit 64941df

Please sign in to comment.