From f06ee96612b42f2b63ae26d8d364f66a81f4ea10 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Tue, 2 Jan 2018 21:05:33 -0800 Subject: [PATCH] doc fix --- docs/user/intro.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user/intro.rst b/docs/user/intro.rst index 0fd507a..93686a6 100644 --- a/docs/user/intro.rst +++ b/docs/user/intro.rst @@ -163,7 +163,7 @@ You can pass an ArgSchemaParser an :class:`argschema.sources.ArgSource` object w and :class:`argschema.ArgSchemaParser` will get its input parameters from that dictionary. Similarly you can pass an :class:`argschema.sources.ArgSink` object which implements a put_dict method, -and :method:`argschema.ArgSchemaParser.output` will output the dictionary however that :class:`argschema.sources.ArgSink` specifies it should. +and :class:`argschema.ArgSchemaParser.output` will output the dictionary however that :class:`argschema.sources.ArgSink` specifies it should. Finally, both :class:`argschema.sources.ArgSource` and :class:`argschema.sources.ArgSink` have a property called ConfigSchema, which is a :class:`marshmallow.Schema` for how to deserialize the kwargs to it's init class.