# \_setDescription

Sets the description of a chosen Skill.

### Parameters

#### id

The ID of the Skill you wish to modify.

#### description

The new description which will go under the chosen Skill.

### Example

```
FM_api('Skill_setDescription',[
		'id'=>'12345',
		'description'=>'This is a test
description.'
	]
);
```

### Results

#### On Success

```
{'ok':1}
```

#### On Failure

If the "id" parameter is not set or has an integer value less than 1:

```
{'error':'missing or invalid parameter: id'}
```

If the "description" parameter is not set or is empty:

```
{'error':'missing or invalid parameter: description'}
```
