---
title: "correctionCheckingResult(range:replacementString:)"
framework: foundation
role: symbol
role_heading: Type Method
path: "foundation/nstextcheckingresult/correctioncheckingresult(range:replacementstring:)"
---

# correctionCheckingResult(range:replacementString:)

Creates and returns a text checking result after detecting a possible correction.

## Declaration

```swift
class func correctionCheckingResult(range: NSRange, replacementString: String) -> NSTextCheckingResult
```

## Parameters

- `range`: The range of the detected result.
- `replacementString`: The suggested replacement string.

## Return Value

Return Value Returns an NSTextCheckingResult with the specified range and a resultType of spelling.

## See Also

### Related Documentation

- [replacementString](foundation/nstextcheckingresult/replacementstring.md)

### Text Checking Results for Spelling

- [spellCheckingResult(range:)](foundation/nstextcheckingresult/spellcheckingresult(range:).md)
