# tools/core/strings/repair.strings.ts

> 12 lines of code and 2 definitions.

Tree: Coordination tree
Language: typescript
Layer: product
Canonical: https://banes-lab.com/anatomy/coordination#file-coordination-tools-core-strings-repair-strings-ts
Source text: https://banes-lab.com/assets/sources/source.bf0cff437932cb1ba16ee1bc551b0a9ec2c9ce7a6af6f4a6d628b14b344fedcc.generated.txt

## Definitions

- `unclaimedRegion` (lexical_declaration, line 1, exported)
- `outsideScope` (lexical_declaration, line 8, exported)

## Used by

- [tools/core/writers/repair.writer.ts](https://banes-lab.com/source/coordination/tools/core/writers/repair.writer.ts.md)

## Source

```typescript
export const unclaimedRegion = function unclaimedRegion(path: string): string {
    return (
        `REFUSED  ${path} is in a folder only runs write, and every run there holds a claim; this write holds ` +
        "none. Start it through a run so it holds a claim.\n"
    );
};

export const outsideScope = function outsideScope(path: string, declared: string): string {
    return (
        `REFUSED  ${path} is outside the scope this run declared (${declared}). A peer that stays clear of that ` +
        "scope relies on the run staying inside it. Widen the scope, or repair the file in a run that covers it.\n"
    );
};
```
