---
title: How can I view help documentation for an Elixir module?
description: In which I help myself to help myself
slug: elixir-help-docs
lastmod: 2021-06-24
tags:
- "elixir"
---
The iex interpreter includes a function called h which can be used to show documentation for a module

```elixir
h String
# h/1
```

