From 247f298054fa312b1a0bb57ca0daff34a3274bdb Mon Sep 17 00:00:00 2001 From: Luiz Hamilton Soares Date: Mon, 29 Apr 2019 11:06:20 -0300 Subject: [PATCH] fix: typo in a Map description --- spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec.md b/spec.md index 4f1f5f45..a12361ae 100644 --- a/spec.md +++ b/spec.md @@ -270,7 +270,7 @@ Field Name | Type | Description description | `string` | A description of the link. [GitHub Flavored Markdown syntax](https://github.github.com/gfm/) MAY be used for rich text representation. summary | `string` | Short description for the link. method | `string` | The name of an _existing_, resolvable OpenRPC method, as defined with a unique `method`. This field MUST resolve to a unique [Method Object](#method-object). As opposed to Open Api, Relative `method` values ARE NOT permitted. -params | Map[`string`, `Any` \| [Runtime Expression](#runtime-expression)]] | A map representing parameters to pass to a method as specified with `method`. The key is the parameter name to be used, whereas the value can be a constant or a [runtime expression](#runtime-expression) to be evaluated and passed to the linked method. +params | Map[`string`, `Any` \| [Runtime Expression](#runtime-expression)] | A map representing parameters to pass to a method as specified with `method`. The key is the parameter name to be used, whereas the value can be a constant or a [runtime expression](#runtime-expression) to be evaluated and passed to the linked method. server | [Server Object](#server-object) | A server object to be used by the target method. A linked method must be identified directly, and must exist in the list of methods defined by the [Methods Object](#method-object).