From d21acafa7751da92856052fc44d36d38120444ea Mon Sep 17 00:00:00 2001 From: Leonardo Souza Date: Mon, 24 Apr 2017 07:59:20 -0300 Subject: [PATCH] docs(guide/interpolation): fix typo in markdown (code highlight) Closes #15935 --- docs/content/guide/interpolation.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/interpolation.ngdoc b/docs/content/guide/interpolation.ngdoc index 0cf11370b431..22c69a125155 100644 --- a/docs/content/guide/interpolation.ngdoc +++ b/docs/content/guide/interpolation.ngdoc @@ -32,7 +32,7 @@ If the interpolated value is not a `String`, it is computed as follows: - `undefined` and `null` are converted to `''` - if the value is an object that is not a `Number`, `Date` or `Array`, $interpolate looks for a custom `toString()` function on the object, and uses that. Custom means that -`myObject.toString !== `Object.prototype.toString`. +`myObject.toString !== Object.prototype.toString`. - if the above doesn't apply, `JSON.stringify` is used. ### Binding to boolean attributes