Commit 72c71129 authored by Jasmeet Bagga's avatar Jasmeet Bagga Committed by Facebook Github Bot

Fix spelling

Summary: s/assiciated/associated

Reviewed By: ericniebler

Differential Revision: D19645433

fbshipit-source-id: 844f3f782a083030dbab5b8196c98fb562f0f7de
parent e50c78af
...@@ -71,14 +71,14 @@ constexpr Expected<typename std::decay<Value>::type, Error> makeExpected( ...@@ -71,14 +71,14 @@ constexpr Expected<typename std::decay<Value>::type, Error> makeExpected(
Value&&); Value&&);
/** /**
* Alias for an Expected type's assiciated value_type * Alias for an Expected type's associated value_type
*/ */
template <class Expected> template <class Expected>
using ExpectedValueType = using ExpectedValueType =
typename std::remove_reference<Expected>::type::value_type; typename std::remove_reference<Expected>::type::value_type;
/** /**
* Alias for an Expected type's assiciated error_type * Alias for an Expected type's associated error_type
*/ */
template <class Expected> template <class Expected>
using ExpectedErrorType = using ExpectedErrorType =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment