Skip to content

Commit

Permalink
fixed syntax error in 'Hamcrest for MXML' example
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbourne committed Jul 21, 2010
1 parent 4f4d43b commit 87da79e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.markdown
Expand Up @@ -41,9 +41,9 @@ Most of the Matchers have also been made usable in the Flex MXML context by wrap
</AllOf>

<mx:TextInput id="numberInput" />
<mx:Label text={ numberMatcher.description }"" />
<mx:Label text={ numberMatcher.mismatchDescription }"" />
<mx:Label text={ numberMatcher.matched }"" />
<mx:Label text="{ numberMatcher.description }" />
<mx:Label text="{ numberMatcher.mismatchDescription }" />
<mx:Label text="{ numberMatcher.matched }" />

## Conditional Matching with Hamcrest

Expand Down

0 comments on commit 87da79e

Please sign in to comment.