Skip to content

Commit

Permalink
Adding in a void to the save data documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tspayne87 committed Sep 20, 2018
1 parent 47f3e60 commit b27c998
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/Multi-core-instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services.AddSolrNet<Person>("http://localhost:8983/solr/person");
Inject it into your workflow after initialization
``` C#
class SampleController {
SaveData(ISolrOperations<Product> solrProduct, ISolrOperations<Person> solrPerson) {
void SaveData(ISolrOperations<Product> solrProduct, ISolrOperations<Person> solrPerson) {
solrProduct.Add(new Product { Name = "Kodak EasyShare" });
solrProduct.Commit();

Expand Down

0 comments on commit b27c998

Please sign in to comment.